home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / Shells / zsh / Source / func / randline < prev    next >
Encoding:
Text File  |  1993-01-31  |  80 b   |  4 lines

  1. # get a random line from a file
  2. integer z=$(wc -l <$1)
  3. sed -n $[RANDOM%z+1]p $1
  4.